home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
blankery
/
blanker
/
source
/
blankers
/
life
/
defaults.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-07-31
|
579b
|
30 lines
/*
* Copyright (c) 1993 Michael D. Bayne.
* All rights reserved.
*
* Please see the documentation accompanying the distribution for distribution and disclaimer information.
*/
#include <exec/types.h>
#include <exec/ports.h>
#include <intuition/intuition.h>
#include "/defs.h"
struct lPrefObject {
LONG Size;
LONG Generations;
LONG Density;
};
VOID defaults( struct bMessage *Msg )
{
static struct lPrefObject lPO = { 20L, 150L, 25L };
Msg->bm_Mod = INVALID_ID;
Msg->bm_Dep = 0;
Msg->bm_Info = "Automaton Life Simulation";
Msg->bm_Data = ( UBYTE * )( &lPO );
}